home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir30 / eerems11.zip / EEREM.H < prev    next >
Text File  |  1994-10-23  |  1KB  |  42 lines

  1. /* ***************************************************************
  2.  
  3. An AutoCAD ADS program to remove "extra entities".  
  4.  
  5. Jon Fleming    CIS 70334,2443    July 19, 1994
  6.  
  7. Public Domain; Please give me credit if you use this or any
  8. significant portion of it
  9.  
  10. Revision history:
  11.  
  12. July 19, 1994  Version 1.0 Initial release
  13.  
  14. October 23, 1994 Version 1.1: Modified EER_CORE.C to handle negative line
  15.     endpoints properly, and to avoid checking for entities to remove when
  16.     no entities were selected in the "candidates for removal" selection set.
  17.     Modified EER_CORE.C and EEREM.H to include version number report when
  18.     DoEntityRemoval starts.
  19.  
  20. *********************************************************** */
  21.  
  22. /* Version number, as a string */
  23.  
  24. #define EEREM_VER "1.1"
  25.  
  26. /* An increment for deciding how often to report progress to the user */
  27.  
  28. #define REPORTTHRESHHOLD 30
  29.  
  30. /* A structure for Polyline Vertex data */
  31.  
  32. typedef struct {
  33.    char Type[7];
  34.    ads_point Location;
  35.    ads_real StartWidth;
  36.    ads_real EndWidth;
  37.    ads_real Bulge;
  38.    ads_point Tangent;
  39.    short Flags;
  40. } VertexData;
  41.  
  42.